home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 9
/
FM Towns Free Software Collection 9.iso
/
t_os
/
tool
/
otohime
/
src
/
lib
/
interrpt.asm
< prev
next >
Wrap
Assembly Source File
|
1994-11-16
|
569b
|
36 lines
; 割り込み禁止 & 解除
;
; 1993 8/20 Hiroshi TODA
;
.386p
;-------------------------------------------
cseg segment dword public use32 'CODE'
assume cs:cseg,ds:cseg
;int interrupt_disable()
public interrupt_disable
db 'interrupt_disable',17
interrupt_disable proc near
cli ;Int disable
xor eax,eax
ret
interrupt_disable endp
;int interrupt_enable()
public interrupt_enable
db 'interrupt_enable',16
interrupt_enable proc near
sti ;interrupt enable
xor eax,eax
ret
interrupt_enable endp
cseg ends
end